home *** CD-ROM | disk | FTP | other *** search
- // **************************************************************
- // tstack.cpp
- // Example program for Simple C++
- //
- // (c) 2000 Emmenjay Consulting Pty Ltd
- //
- // History
- // 12/02/2000 MJS Initial Coding.
- //
- // **************************************************************
-
- #include <iostream>
- #include "tstack.h"
- using namespace std;
-
- int main()
- {
- TStack<int> s(50);
- int val;
-
- do {
- cin >> val;
- s.Push( val );
- } while (val!=0);
-
- while (s.Pop( val ))
- cout << val << '\n';
- return 0;
- }
-
-
-